Setting Up EC2 Instance

With the instance now launched, I have to install various programs etc so I can do my work.


In [2]:
! ls


Bitfusion-README.ipynb	udacity  Untitled.ipynb

In [3]:
! sudo apt-get install git


Reading package lists... Done
Building dependency tree       
Reading state information... Done
git is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 46 not upgraded.

Looks like git is already installed.


In [4]:
! git clone https://github.com/mathematiguy/welcome-to-night-vale


Cloning into 'welcome-to-night-vale'...
remote: Counting objects: 164, done.
remote: Compressing objects: 100% (152/152), done.
remote: Total 164 (delta 9), reused 156 (delta 5), pack-reused 0
Receiving objects: 100% (164/164), 10.04 MiB | 0 bytes/s, done.
Resolving deltas: 100% (9/9), done.
Checking connectivity... done.

I also need keras as well


In [1]:
! pip install keras


Requirement already satisfied: keras in /usr/local/lib/python2.7/dist-packages
Requirement already satisfied: theano in /usr/local/lib/python2.7/dist-packages (from keras)
Requirement already satisfied: pyyaml in /usr/local/lib/python2.7/dist-packages (from keras)
Requirement already satisfied: six in /usr/local/lib/python2.7/dist-packages (from keras)
Requirement already satisfied: numpy>=1.9.1 in /usr/local/lib/python2.7/dist-packages (from theano->keras)
Requirement already satisfied: scipy>=0.14 in /usr/local/lib/python2.7/dist-packages (from theano->keras)
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:318: SNIMissingWarning: An HTTPS request has been made, but the SNI (Subject Name Indication) extension to TLS is not available on this platform. This may cause the server to present an incorrect TLS certificate, which can cause validation failures. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#snimissingwarning.
  SNIMissingWarning
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:122: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. You can upgrade to a newer version of Python to solve this. For more information, see https://urllib3.readthedocs.io/en/latest/security.html#insecureplatformwarning.
  InsecurePlatformWarning

In [ ]: